
/* SIDEBAR */
#sidebar {
	position: fixed;
	max-width: 260px;
	width: 100%;
	background: #2c2c56;
	top: 0;
	left: 0;
	height: 100%;
	overflow-y: auto;
	scrollbar-width: none;
	transition: all .3s ease;
	z-index: 200;
	
}
#sidebar.hide {
	max-width: 60px;
}

#sidebar::-webkit-scrollbar {
	display: none;
}
#sidebar .brand {
	font-size: 24px;
	display: flex;
	align-items: center;
	height: 64px;
	font-weight: 700;
	color:white;
	position: sticky;
	top: 10px;
	left: 0;
	z-index: 100;
	background: #2c2c56;
	transition: all .3s ease;
	padding: 0 6px;
	border-bottom: 2px solid #4f5962;
	
}

#sidebar .icon  {
	min-width: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 6px;
	font-size: 1.25rem;
	color:white;
}

#sidebar .homeicon  {
	min-width: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 6px;
	font-size: 1.75rem;
	color:white;
}
#sidebar .icon-right {
	margin-left: auto;
	transition: all .3s ease;
	font-size: 1.05rem;
	color:white;
}
#sidebar .side-menu {
	margin: 36px 0;
	padding: 0 20px;
	transition: all .3s ease;
}
#sidebar.hide .side-menu {
	padding: 0 6px;
}

#sidebar .side-menu a {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: black;
	padding: 12px 16px 12px 0;
	transition: all .3s ease;
	border-radius: 10px;
	margin: 4px 0;
	white-space: nowrap;
}
#sidebar .side-menu > li > a:hover {
	background: #3c3c44;
	
}
#sidebar .side-menu > li > a.active .icon-right {
	transform: rotateZ(90deg);
}
#sidebar .side-menu > li > a.active,
#sidebar .side-menu > li > a.active:hover {
	background: #1775F1;
	color: white;
}


#sidebar .side-dropdown {
	padding-left: 24px;
	max-height: 0;
	overflow-y: hidden;
	transition: all .15s ease;
}
#sidebar .side-dropdown.show {
	max-height: 1000px;
}
#sidebar .side-dropdown a:hover {
	background: #444c44;
}

#sidebar .side-dropdown > li > a.active{
	background: #2c2c56;
	color: aliceblue;
}
/* SIDEBAR */


a .title {
	font-size: 20px;
	font-weight: 500;
	color: white;
}

li a .sub-title{
	font-size: 17px;
	font-weight: 500;
	color: white;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}


/* CONTENT */
#content {
	position: relative;
	width: calc(100% - 260px);
	left: 260px;
	transition: all .3s ease;
}
#sidebar.hide + #content {
	width: calc(100% - 60px);
	left: 60px;
}

/* NAVBAR */
nav {
	background: grey;
	height: 64px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	grid-gap: 28px;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 100;
}
nav .toggle-sidebar {
	font-size: 1.75rem;
	cursor: pointer;
}

/* NAVBAR */



/* MAIN */
main {
	width: 100%;
	padding: 24px 20px 20px 20px;
}
main .title {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
}
main .breadcrumbs {
	display: flex;
	grid-gap: 6px;
	float: right;
}
main .breadcrumbs li,
main .breadcrumbs li a {
	font-size: 14px;
}
main .breadcrumbs li a {
	color: #1775F1;
}
main .breadcrumbs li a.active,
main .breadcrumbs li.divider {
	color: #8D8D8D;
	pointer-events: none;
}
/* MAIN */
/* CONTENT */

.table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
    
.table thead tr {
    background-color: #001a4d;
    color: #ffffff;
    text-align: left;
}
    
.table th,
.table td {
    padding: 12px 15px;
}
    
.table tbody tr {
    border-bottom: 1px solid #dddddd;
}
    
.table tbody tr:nth-of-type(even) {
   background-color: #f3f3f3;
}
    
.table tbody tr:last-of-type {
    border-bottom: 2px solid #001a4d;
}
    

